100
How do I specify the indentation of the child items relative to their parents

OBJECT propertieslist;

propertieslist =  ObjectByName("AN1") ;
_ObjectSetProperty( propertieslist , "Indent", 11);
_ObjectCallMethod( propertieslist , "Select", propertieslist);
_ObjectCallMethod( propertieslist , "ExpandAll");

99
How do I get the a property based on its identifier

OBJECT propertieslist;

propertieslist =  ObjectByName("AN1") ;
_ObjectCallMethod( propertieslist , "BeginUpdate");
_ObjectCallMethod( propertieslist , "Add", "Root","",-1);
_ObjectSetProperty( _ObjectCallMethod( propertieslist , "Add", "Child 1",1,1,"","Root") , "ID", 1234);
_ObjectCallMethod( propertieslist , "Add", "Child 2",2,1,"","Root");
_ObjectCallMethod(propertieslist, "ExecuteTemplate", "ExpandItem(`Root`) = True");
_ObjectCallMethod( propertieslist , "Add", "Property",_ObjectCallMethod(propertieslist, "ExecuteTemplate", "Property(1234).Name"),-1);
_ObjectCallMethod( propertieslist , "EndUpdate");

98
How do I get the a property based on its index

OBJECT propertieslist;

propertieslist =  ObjectByName("AN1") ;
_ObjectCallMethod( propertieslist , "BeginUpdate");
_ObjectCallMethod( propertieslist , "Add", "Root","",-1);
_ObjectCallMethod( propertieslist , "Add", "Child 1",1,1,"","Root");
_ObjectCallMethod( propertieslist , "Add", "Child 2",2,1,"","Root");
_ObjectCallMethod(propertieslist, "ExecuteTemplate", "ExpandItem(`Root`) = True");
_ObjectCallMethod( propertieslist , "Add", "Item",_ObjectCallMethod(propertieslist, "ExecuteTemplate", "Item(1).Name"),-1);
_ObjectCallMethod( propertieslist , "EndUpdate");

97
How do I get the number or count of the properties being listed

OBJECT propertieslist;

propertieslist =  ObjectByName("AN1") ;
_ObjectCallMethod( propertieslist , "BeginUpdate");
_ObjectCallMethod( propertieslist , "Add", "Root","",-1);
_ObjectCallMethod( propertieslist , "Add", "Child 1",1,1,"","Root");
_ObjectCallMethod( propertieslist , "Add", "Child 2",2,1,"","Root");
_ObjectCallMethod(propertieslist, "ExecuteTemplate", "ExpandItem(`Root`) = True");
_ObjectCallMethod( propertieslist , "Add", "Count",_ObjectGetProperty( propertieslist , "Count"),-1);
_ObjectCallMethod( propertieslist , "EndUpdate");

96
How do I change the name or the caption for a column

OBJECT propertieslist;

propertieslist =  ObjectByName("AN1") ;
_ObjectSetProperty( propertieslist , "HeaderVisible", -1);
_ObjectCallMethod(propertieslist, "ExecuteTemplate", "ColumnCaption(0) = `Properties`");
_ObjectCallMethod( propertieslist , "Select", propertieslist);

95
How do I expand a property

OBJECT propertieslist;

propertieslist =  ObjectByName("AN1") ;
_ObjectCallMethod( propertieslist , "BeginUpdate");
_ObjectCallMethod( propertieslist , "Add", "Root","",-1);
_ObjectCallMethod( propertieslist , "Add", "Child 1",1,1,"","Root");
_ObjectCallMethod( propertieslist , "Add", "Child 2",2,1,"","Root");
_ObjectCallMethod(propertieslist, "ExecuteTemplate", "ExpandItem(`Root`) = True");
_ObjectCallMethod( propertieslist , "EndUpdate");

94
How do I change the width for a column

OBJECT propertieslist;

propertieslist =  ObjectByName("AN1") ;
_ObjectCallMethod(propertieslist, "ExecuteTemplate", "ColumnWidth(1) = 48");
_ObjectCallMethod( propertieslist , "Select", propertieslist);

93
How do I clear or remove all properties
OBJECT propertieslist;

propertieslist =  ObjectByName("AN1") ;
_ObjectCallMethod( propertieslist , "Add", "First","A",1);
_ObjectCallMethod( propertieslist , "Clear");
_ObjectCallMethod( propertieslist , "Refresh");

92
How do I remove a property
OBJECT propertieslist;

propertieslist =  ObjectByName("AN1") ;
_ObjectCallMethod( propertieslist , "Add", "First","A",1);
_ObjectCallMethod( propertieslist , "Remove", "First");
_ObjectCallMethod( propertieslist , "Refresh");

91
How do I add a property

OBJECT propertieslist;

propertieslist =  ObjectByName("AN1") ;
_ObjectCallMethod( propertieslist , "Add", "First Name","Mihai",1);
_ObjectCallMethod( propertieslist , "Refresh");

90
How do I change the visual aspect description's spliter, using EBN

OBJECT propertieslist;

propertieslist =  ObjectByName("AN1") ;
_ObjectCallMethod( _ObjectGetProperty( propertieslist , "VisualAppearance") , "Add", 1,"c:\exontrol\images\normal.ebn");
_ObjectCallMethod(propertieslist, "ExecuteTemplate", "Background(0) = 16777216");
_ObjectCallMethod( propertieslist , "Select", propertieslist);

89
How do I change the visual aspect for thumb parts in the scroll bars, using EBN

OBJECT propertieslist;

propertieslist =  ObjectByName("AN1") ;
_ObjectCallMethod( _ObjectGetProperty( propertieslist , "VisualAppearance") , "Add", 1,"c:\exontrol\images\normal.ebn");
_ObjectCallMethod( _ObjectGetProperty( propertieslist , "VisualAppearance") , "Add", 2,"c:\exontrol\images\pushed.ebn");
_ObjectCallMethod( _ObjectGetProperty( propertieslist , "VisualAppearance") , "Add", 3,"c:\exontrol\images\hot.ebn");
_ObjectCallMethod(propertieslist, "ExecuteTemplate", "Background(388) = 16777216");
_ObjectCallMethod(propertieslist, "ExecuteTemplate", "Background(389) = 33554432");
_ObjectCallMethod(propertieslist, "ExecuteTemplate", "Background(391) = 50331648");
_ObjectCallMethod(propertieslist, "ExecuteTemplate", "Background(260) = 16777216");
_ObjectCallMethod(propertieslist, "ExecuteTemplate", "Background(261) = 33554432");
_ObjectCallMethod(propertieslist, "ExecuteTemplate", "Background(263) = 50331648");
_ObjectCallMethod( propertieslist , "Select", propertieslist);

88
I've seen that you can change the visual appearance for the scroll bar. How can I do that

OBJECT propertieslist;

propertieslist =  ObjectByName("AN1") ;
_ObjectCallMethod( _ObjectGetProperty( propertieslist , "VisualAppearance") , "Add", 1,"c:\exontrol\images\normal.ebn");
_ObjectCallMethod( _ObjectGetProperty( propertieslist , "VisualAppearance") , "Add", 2,"c:\exontrol\images\pushed.ebn");
_ObjectCallMethod( _ObjectGetProperty( propertieslist , "VisualAppearance") , "Add", 3,"c:\exontrol\images\hot.ebn");
_ObjectCallMethod(propertieslist, "ExecuteTemplate", "Background(324) = 16777216");
_ObjectCallMethod(propertieslist, "ExecuteTemplate", "Background(325) = 33554432");
_ObjectCallMethod(propertieslist, "ExecuteTemplate", "Background(327) = 50331648");
_ObjectCallMethod(propertieslist, "ExecuteTemplate", "Background(404) = 15790320");
_ObjectCallMethod(propertieslist, "ExecuteTemplate", "Background(276) = 15790320");
_ObjectCallMethod(propertieslist, "ExecuteTemplate", "Background(511) = 15790320");
_ObjectSetProperty( propertieslist , "HeaderVisible", -1);
_ObjectSetProperty( propertieslist , "ColumnAutoResize", 0);
_ObjectCallMethod( propertieslist , "Select", propertieslist);

87
Can I change the forecolor for the tooltip

OBJECT propertieslist;

propertieslist =  ObjectByName("AN1") ;
_ObjectSetProperty( propertieslist , "ToolTipDelay", 1);
_ObjectSetProperty( propertieslist , "ToolTipWidth", 364);
_ObjectCallMethod(propertieslist, "ExecuteTemplate", "Background(66) = 255");
_ObjectSetProperty( propertieslist , "AllowTooltip", -1);
_ObjectCallMethod( propertieslist , "Select", propertieslist);

86
Can I change the background color for the tooltip

OBJECT propertieslist;

propertieslist =  ObjectByName("AN1") ;
_ObjectSetProperty( propertieslist , "ToolTipDelay", 1);
_ObjectSetProperty( propertieslist , "ToolTipWidth", 364);
_ObjectCallMethod(propertieslist, "ExecuteTemplate", "Background(65) = 255");
_ObjectCallMethod( propertieslist , "Select", propertieslist);
_ObjectSetProperty( propertieslist , "AllowTooltip", -1);

85
Can I change the default border of the tooltip, using your EBN files

OBJECT propertieslist;

propertieslist =  ObjectByName("AN1") ;
_ObjectSetProperty( propertieslist , "ToolTipDelay", 1);
_ObjectSetProperty( propertieslist , "ToolTipWidth", 364);
_ObjectCallMethod( _ObjectGetProperty( propertieslist , "VisualAppearance") , "Add", 1,"c:\exontrol\images\normal.ebn");
_ObjectCallMethod(propertieslist, "ExecuteTemplate", "Background(64) = 16777216");
_ObjectCallMethod( propertieslist , "Select", propertieslist);
_ObjectSetProperty( propertieslist , "AllowTooltip", -1);

84
Is there any option to highligth the column from the cursor - point
OBJECT propertieslist;

propertieslist =  ObjectByName("AN1") ;
_ObjectCallMethod( _ObjectGetProperty( propertieslist , "VisualAppearance") , "Add", 1,"c:\exontrol\images\normal.ebn");
_ObjectCallMethod(propertieslist, "ExecuteTemplate", "Background(32) = 16777216");
_ObjectSetProperty( propertieslist , "HeaderVisible", -1);

83
How can change the visual appearance for the spin control, using your EBN files

OBJECT propertieslist;

propertieslist =  ObjectByName("AN1") ;
_ObjectCallMethod( _ObjectGetProperty( propertieslist , "VisualAppearance") , "Add", 1,"c:\exontrol\images\normal.ebn");
_ObjectCallMethod( _ObjectGetProperty( propertieslist , "VisualAppearance") , "Add", 2,"c:\exontrol\images\pushed.ebn");
_ObjectCallMethod(propertieslist, "ExecuteTemplate", "Background(22) = 16777216");
_ObjectCallMethod(propertieslist, "ExecuteTemplate", "Background(23) = 33554432");
_ObjectCallMethod(propertieslist, "ExecuteTemplate", "Background(24) = 16777216");
_ObjectCallMethod(propertieslist, "ExecuteTemplate", "Background(25) = 33554432");
_ObjectSetProperty( propertieslist , "AllowSpin", -1);
_ObjectCallMethod( propertieslist , "Add", "Spin",50,1);
_ObjectCallMethod( propertieslist , "Refresh");

82
How can change the visual appearance for the slider or track bar, using your EBN files

OBJECT propertieslist;

propertieslist =  ObjectByName("AN1") ;
_ObjectCallMethod( _ObjectGetProperty( propertieslist , "VisualAppearance") , "Add", 1,"c:\exontrol\images\normal.ebn");
_ObjectCallMethod(propertieslist, "ExecuteTemplate", "Background(16) = 16777216");
_ObjectCallMethod(propertieslist, "ExecuteTemplate", "Background(15) = 13816530");
_ObjectCallMethod( propertieslist , "Add", "Slider",50,16);
_ObjectCallMethod( propertieslist , "Refresh");

81
How do I change the visual aspect of the drop down calendar window, that shows up if I click the drop down filter button, using EBN

OBJECT propertieslist;

propertieslist =  ObjectByName("AN1") ;
_ObjectCallMethod( _ObjectGetProperty( propertieslist , "VisualAppearance") , "Add", 1,"c:\exontrol\images\normal.ebn");
_ObjectCallMethod( _ObjectGetProperty( propertieslist , "VisualAppearance") , "Add", 2,"c:\exontrol\images\pushed.ebn");
_ObjectCallMethod(propertieslist, "ExecuteTemplate", "Background(8) = 16777216");
_ObjectCallMethod(propertieslist, "ExecuteTemplate", "Background(9) = 16777216");
_ObjectCallMethod(propertieslist, "ExecuteTemplate", "Background(10) = 33554432");
_ObjectCallMethod(propertieslist, "ExecuteTemplate", "Background(11) = 16777216");
_ObjectCallMethod(propertieslist, "ExecuteTemplate", "Background(12) = 15132390");
_ObjectCallMethod(propertieslist, "ExecuteTemplate", "Background(13) = 15132390");
_ObjectCallMethod(propertieslist, "ExecuteTemplate", "Background(14) = 16777216");
_ObjectCallMethod( propertieslist , "Add", "Date","1/1/2001",9);
_ObjectCallMethod( propertieslist , "Refresh");

80
How can change the visual appearance for the button that are visible inside the editors, using your EBN files

OBJECT propertieslist;

propertieslist =  ObjectByName("AN1") ;
_ObjectCallMethod( _ObjectGetProperty( propertieslist , "VisualAppearance") , "Add", 1,"c:\exontrol\images\normal.ebn");
_ObjectCallMethod( _ObjectGetProperty( propertieslist , "VisualAppearance") , "Add", 2,"c:\exontrol\images\pushed.ebn");
_ObjectCallMethod(propertieslist, "ExecuteTemplate", "Background(7) = 16777216");
_ObjectCallMethod(propertieslist, "ExecuteTemplate", "Background(6) = 33554432");
_ObjectCallMethod( propertieslist , "Select", propertieslist);

79
How can change the visual appearance for the button that shows the drop down editors, using your EBN files

OBJECT propertieslist;

propertieslist =  ObjectByName("AN1") ;
_ObjectCallMethod( _ObjectGetProperty( propertieslist , "VisualAppearance") , "Add", 1,"c:\exontrol\images\normal.ebn");
_ObjectCallMethod( _ObjectGetProperty( propertieslist , "VisualAppearance") , "Add", 2,"c:\exontrol\images\pushed.ebn");
_ObjectCallMethod(propertieslist, "ExecuteTemplate", "Background(4) = 16777216");
_ObjectCallMethod(propertieslist, "ExecuteTemplate", "Background(5) = 33554432");
_ObjectCallMethod( propertieslist , "Select", propertieslist);

78
Can I change the order of the buttons in the scroll bar

OBJECT propertieslist;

propertieslist =  ObjectByName("AN1") ;
_ObjectCallMethod(propertieslist, "ExecuteTemplate", "ScrollOrderParts(1) = `t,l,r`");
_ObjectCallMethod(propertieslist, "ExecuteTemplate", "ScrollOrderParts(0) = `t,l,r`");
_ObjectCallMethod( propertieslist , "Select", propertieslist);

77
The thumb size seems to be very small. Can I make it bigger

OBJECT propertieslist;

propertieslist =  ObjectByName("AN1") ;
_ObjectCallMethod(propertieslist, "ExecuteTemplate", "ScrollThumbSize(0) = 128");
_ObjectCallMethod( propertieslist , "Select", propertieslist);

76
How do I enlarge or change the size of the control's scrollbars

OBJECT propertieslist;

propertieslist =  ObjectByName("AN1") ;
_ObjectSetProperty( propertieslist , "ScrollHeight", 18);
_ObjectSetProperty( propertieslist , "ScrollWidth", 18);
_ObjectSetProperty( propertieslist , "ScrollButtonWidth", 18);
_ObjectSetProperty( propertieslist , "ScrollButtonHeight", 18);
_ObjectCallMethod( propertieslist , "Select", propertieslist);

75
How can I display my text on the scroll bar, using a different font

OBJECT propertieslist;

propertieslist =  ObjectByName("AN1") ;
_ObjectCallMethod(propertieslist, "ExecuteTemplate", "ScrollPartCaption(0,256) = `This is just a text`");
_ObjectCallMethod(propertieslist, "ExecuteTemplate", "ScrollFont(0).Size = 12");
_ObjectCallMethod( propertieslist , "Select", propertieslist);

74
How can I display my text on the scroll bar

OBJECT propertieslist;

propertieslist =  ObjectByName("AN1") ;
_ObjectCallMethod(propertieslist, "ExecuteTemplate", "ScrollPartCaption(0,256) = `this is just a text`");
_ObjectCallMethod( propertieslist , "Select", propertieslist);

73
How do I assign a tooltip to a scrollbar

OBJECT propertieslist;

propertieslist =  ObjectByName("AN1") ;
_ObjectCallMethod(propertieslist, "ExecuteTemplate", "ScrollToolTip(0) = `This is a tooltip being shown when you click and drag the thumb in the vertical scroll bar`");
_ObjectCallMethod( propertieslist , "Select", propertieslist);

72
How do I assign an icon to the button in the scrollbar

OBJECT propertieslist;

propertieslist =  ObjectByName("AN1") ;
_ObjectCallMethod( propertieslist , "Images", "gBJJgBAIDAAGAAEAAQhYAf8Pf4hh0QihCJo2AEZjQAjEZFEaIEaEEaAIAkcbk0olUrlktl0vmExmUzmk1m03nE5nU7nk9n0/oFBoVDolFo1HpFJpVLplNp1PqFRqVTq" +
	"lVq1XrFZrVbrldr1fsFhsVjslls1ntFptVrtltt1vuFxuVzul1u13vF5vV7vl9v1/wGBwWDwmFw2HxGJxWLxmNx0xiFdyOTh8Tf9ZymXx+QytcyNgz8r0OblWjyWds+m" +
	"0ka1Vf1ta1+r1mos2xrG2xeZ0+a0W0qOx3GO4NV3WeyvD2XJ5XL5nN51aiw+lfSj0gkUkAEllHanHI5j/cHg8EZf7w8vl8j4f/qfEZeB09/vjLAB30+kZQAP/P5/H6/y" +
	"NAOAEAwCjMBwFAEDwJBMDwLBYAP2/8Hv8/gAGAD8LQs9w/nhDY/oygIA=");
_ObjectCallMethod(propertieslist, "ExecuteTemplate", "ScrollPartVisible(0,32768) = True");
_ObjectCallMethod(propertieslist, "ExecuteTemplate", "ScrollPartCaption(0,32768) = `<img>1</img>`");
_ObjectSetProperty( propertieslist , "ScrollHeight", 18);
_ObjectSetProperty( propertieslist , "ScrollButtonWidth", 18);
_ObjectCallMethod( propertieslist , "Select", propertieslist);

71
I need to add a button in the scroll bar. Is this possible

OBJECT propertieslist;

propertieslist =  ObjectByName("AN1") ;
_ObjectCallMethod(propertieslist, "ExecuteTemplate", "ScrollPartVisible(0,32768) = True");
_ObjectCallMethod(propertieslist, "ExecuteTemplate", "ScrollPartCaption(0,32768) = `1`");
_ObjectCallMethod( propertieslist , "Select", propertieslist);

70
Can I display an additional buttons in the scroll bar

OBJECT propertieslist;

propertieslist =  ObjectByName("AN1") ;
_ObjectCallMethod(propertieslist, "ExecuteTemplate", "ScrollPartVisible(0,32768) = True");
_ObjectCallMethod(propertieslist, "ExecuteTemplate", "ScrollPartVisible(0,16384) = True");
_ObjectCallMethod(propertieslist, "ExecuteTemplate", "ScrollPartVisible(0,1) = True");
_ObjectCallMethod(propertieslist, "ExecuteTemplate", "ScrollPartVisible(0,2) = True");
_ObjectCallMethod( propertieslist , "Select", propertieslist);

69
Can I change the font for the tooltip

OBJECT propertieslist,stdfont;

propertieslist =  ObjectByName("AN1") ;
_ObjectSetProperty( propertieslist , "ToolTipDelay", 1);
stdfont = _ObjectGetProperty( propertieslist , "ToolTipFont");
	_ObjectSetProperty( stdfont , "Name", "Tahoma");
	_ObjectSetProperty( stdfont , "Size", 14);
_ObjectSetProperty( propertieslist , "AllowTooltip", -1);
_ObjectCallMethod( propertieslist , "Select", propertieslist);

68
How do I call your x-script language

OBJECT propertieslist,property;

propertieslist =  ObjectByName("AN1") ;
property = _ObjectCallMethod( propertieslist , "ExecuteTemplate", "Add(`Bold`,1,1)");
	_ObjectSetProperty( property , "Bold", -1);

67
How do I disable sorting the columns when clicking the control's header
OBJECT propertieslist;

propertieslist =  ObjectByName("AN1") ;
_ObjectSetProperty( propertieslist , "SortOnClick", 0);
_ObjectSetProperty( propertieslist , "HeaderVisible", -1);
_ObjectCallMethod( propertieslist , "Select", propertieslist);

66
Can I use your EBN files to change the visual appearance for +/- expand - collapse buttons

OBJECT propertieslist;

propertieslist =  ObjectByName("AN1") ;
_ObjectCallMethod( _ObjectGetProperty( propertieslist , "VisualAppearance") , "Add", 1,"c:\exontrol\images\normal.ebn");
_ObjectCallMethod( _ObjectGetProperty( propertieslist , "VisualAppearance") , "Add", 2,"c:\exontrol\images\pushed.ebn");
_ObjectSetProperty( propertieslist , "HasButtons", 4);
_ObjectCallMethod(propertieslist, "ExecuteTemplate", "HasButtonsCustom(0) = 16777216");
_ObjectCallMethod(propertieslist, "ExecuteTemplate", "HasButtonsCustom(1) = 33554432");
_ObjectCallMethod( propertieslist , "Select", propertieslist);

65
Can I use my own icons for the +/- ( expand/collapse ) buttons

OBJECT propertieslist;

propertieslist =  ObjectByName("AN1") ;
_ObjectCallMethod( propertieslist , "Images", "gBJJgBAIDAAGAAEAAQhYAf8Pf4hh0QihCJo2AEZjQAjEZFEaIEaEEaAIAkcbk0olUrlktl0vmExmUzmk1m03nE5nU7nk9n0/oFBoVDolFo1HpFJpVLplNp1PqFRqVTq" +
	"lVq1XrFZrVbrldr1fsFhsVjslls1ntFptVrtltt1vuFxuVzul1u13vF5vV7vl9v1/wGBwWDwmFw2HxGJxWLxmNx0xiFdyOTh8Tf9ZymXx+QytcyNgz8r0OblWjyWds+m" +
	"0ka1Vf1ta1+r1mos2xrG2xeZ0+a0W0qOx3GO4NV3WeyvD2XJ5XL5nN51aiw+lfSj0gkUkAEllHanHI5j/cHg8EZf7w8vl8j4f/qfEZeB09/vjLAB30+kZQAP/P5/H6/y" +
	"NAOAEAwCjMBwFAEDwJBMDwLBYAP2/8Hv8/gAGAD8LQs9w/nhDY/oygIA=");
_ObjectSetProperty( propertieslist , "HasButtons", 4);
_ObjectCallMethod(propertieslist, "ExecuteTemplate", "HasButtonsCustom(0) = 1");
_ObjectCallMethod(propertieslist, "ExecuteTemplate", "HasButtonsCustom(1) = 2");
_ObjectCallMethod( propertieslist , "Select", propertieslist);

64
How do I change visual appearance of the +/- ( expand/collapse ) buttons

OBJECT propertieslist;

propertieslist =  ObjectByName("AN1") ;
_ObjectSetProperty( propertieslist , "HasButtons", 3);
_ObjectCallMethod( propertieslist , "Select", propertieslist);

63
How do I browse or select for a com or net object
OBJECT propertieslist;

propertieslist =  ObjectByName("AN1") ;
_ObjectSetProperty( propertieslist , "SelectedObject", propertieslist);

62
How do I expand all properties

OBJECT propertieslist;

propertieslist =  ObjectByName("AN1") ;
_ObjectCallMethod( propertieslist , "Select", propertieslist);
_ObjectCallMethod( propertieslist , "ExpandAll");

61
How do I enable resizing the columns at runtime

OBJECT propertieslist;

propertieslist =  ObjectByName("AN1") ;
_ObjectSetProperty( propertieslist , "ColumnsAllowSizing", -1);
_ObjectCallMethod( propertieslist , "Select", propertieslist);

60
How do I call your x-script language

OBJECT propertieslist;

propertieslist =  ObjectByName("AN1") ;
_ObjectSetProperty( propertieslist , "Template", "Add(`First`,1,1)");

59
How can I enable or disable the control

OBJECT propertieslist;

propertieslist =  ObjectByName("AN1") ;
_ObjectSetProperty( propertieslist , "Enabled", 0);
_ObjectCallMethod( propertieslist , "Select", propertieslist);

58
I've seen that the width of the tooltip is variable. Can I make it larger

OBJECT propertieslist;

propertieslist =  ObjectByName("AN1") ;
_ObjectSetProperty( propertieslist , "ToolTipWidth", 328);
_ObjectSetProperty( propertieslist , "AllowTooltip", -1);
_ObjectCallMethod( propertieslist , "Select", propertieslist);

57
How do I disable showing the tooltip for all control
OBJECT propertieslist;

propertieslist =  ObjectByName("AN1") ;
_ObjectSetProperty( propertieslist , "ToolTipDelay", 0);
_ObjectSetProperty( propertieslist , "AllowTooltip", -1);
_ObjectCallMethod( propertieslist , "Select", propertieslist);

56
How do I let the tooltip being displayed longer

OBJECT propertieslist;

propertieslist =  ObjectByName("AN1") ;
_ObjectSetProperty( propertieslist , "ToolTipPopDelay", 10000);
_ObjectSetProperty( propertieslist , "AllowTooltip", -1);
_ObjectCallMethod( propertieslist , "Select", propertieslist);

55
How do I show the tooltip quicker

OBJECT propertieslist;

propertieslist =  ObjectByName("AN1") ;
_ObjectSetProperty( propertieslist , "ToolTipDelay", 1);
_ObjectSetProperty( propertieslist , "AllowTooltip", -1);
_ObjectCallMethod( propertieslist , "Select", propertieslist);

54
How do I get the handle of the control's window
OBJECT propertieslist;

propertieslist =  ObjectByName("AN1") ;
var_hWnd = _ObjectGetProperty( propertieslist , "hWnd");

53
How do I show alternate rows in different background color

OBJECT propertieslist;

propertieslist =  ObjectByName("AN1") ;
_ObjectSetProperty( propertieslist , "BackColorAlternate", 15790320);
_ObjectCallMethod( propertieslist , "Select", propertieslist);

52
How do enable or disable tooltips
OBJECT propertieslist;

propertieslist =  ObjectByName("AN1") ;
_ObjectSetProperty( propertieslist , "AllowTooltip", -1);
_ObjectCallMethod( propertieslist , "Select", propertieslist);

51
How do change the foreground color for the control's header bar, using EBN

OBJECT propertieslist;

propertieslist =  ObjectByName("AN1") ;
_ObjectSetProperty( propertieslist , "HeaderVisible", -1);
_ObjectSetProperty( propertieslist , "ForeColorHeader", 255);

50
How do change the visual appearance for the control's header bar, using EBN

OBJECT propertieslist;

propertieslist =  ObjectByName("AN1") ;
_ObjectSetProperty( propertieslist , "HeaderVisible", -1);
_ObjectCallMethod( _ObjectGetProperty( propertieslist , "VisualAppearance") , "Add", 1,"c:\exontrol\images\normal.ebn");
_ObjectSetProperty( propertieslist , "BackColorHeader", 16777216);

49
How do I change the foreground color for the description part in the bottom side of the control

OBJECT propertieslist;

propertieslist =  ObjectByName("AN1") ;
_ObjectSetProperty( propertieslist , "ForeColorDescription", 255);
_ObjectCallMethod( propertieslist , "Select", propertieslist);

48
How do I change the visual appearance for the description part in the bottom side of the control, using your EBN files

OBJECT propertieslist;

propertieslist =  ObjectByName("AN1") ;
_ObjectCallMethod( _ObjectGetProperty( propertieslist , "VisualAppearance") , "Add", 1,"c:\exontrol\images\normal.ebn");
_ObjectSetProperty( propertieslist , "BackColorDescription", 16777216);

47
How do I change the background color for the description part in the bottom side of the control

OBJECT propertieslist;

propertieslist =  ObjectByName("AN1") ;
_ObjectSetProperty( propertieslist , "BackColorDescription", 255);

46
Is there any option to specify the height of the items, before adding them

OBJECT propertieslist;

propertieslist =  ObjectByName("AN1") ;
_ObjectSetProperty( propertieslist , "DefaultItemHeight", 13);
_ObjectCallMethod( propertieslist , "Select", propertieslist);

45
How do I show or hide the connection between categories

OBJECT propertieslist;

propertieslist =  ObjectByName("AN1") ;
_ObjectSetProperty( propertieslist , "MarkCategories", -1);
_ObjectSetProperty( propertieslist , "LinkCategories", 0);
_ObjectSetProperty( propertieslist , "ShowCategories", -1);
_ObjectSetProperty( propertieslist , "ShowPropertyPages", 0);
_ObjectCallMethod( propertieslist , "Select", propertieslist);

44
How do I show or hide the categories

OBJECT propertieslist;

propertieslist =  ObjectByName("AN1") ;
_ObjectSetProperty( propertieslist , "MarkCategories", -1);
_ObjectSetProperty( propertieslist , "MarkLineColor", 255);
_ObjectSetProperty( propertieslist , "ShowCategories", -1);
_ObjectSetProperty( propertieslist , "ShowPropertyPages", 0);
_ObjectCallMethod( propertieslist , "Select", propertieslist);

43
How do I change the foreground color for categories

OBJECT propertieslist;

propertieslist =  ObjectByName("AN1") ;
_ObjectSetProperty( propertieslist , "ForeColorCategories", 255);
_ObjectSetProperty( propertieslist , "ShowCategories", -1);
_ObjectSetProperty( propertieslist , "ShowPropertyPages", 0);
_ObjectCallMethod( propertieslist , "Select", propertieslist);

42
How do I change the background color for categories

OBJECT propertieslist;

propertieslist =  ObjectByName("AN1") ;
_ObjectSetProperty( propertieslist , "BackColorCategories", 255);
_ObjectSetProperty( propertieslist , "ShowCategories", -1);
_ObjectSetProperty( propertieslist , "ShowPropertyPages", 0);
_ObjectCallMethod( propertieslist , "Select", propertieslist);

41
How do I sort the control

OBJECT propertieslist;

propertieslist =  ObjectByName("AN1") ;
_ObjectCallMethod( propertieslist , "Select", propertieslist);
_ObjectCallMethod( propertieslist , "Sort", 0);

40
Is there any option to change the color for the grid lines

OBJECT propertieslist;

propertieslist =  ObjectByName("AN1") ;
_ObjectSetProperty( propertieslist , "HasGridLines", -1);
_ObjectSetProperty( propertieslist , "GridLineColor", 255);
_ObjectCallMethod( propertieslist , "Select", propertieslist);

39
How do I specify the default category

OBJECT propertieslist;

propertieslist =  ObjectByName("AN1") ;
_ObjectSetProperty( propertieslist , "DefaultCategory", "Font");
_ObjectSetProperty( propertieslist , "ShowCategories", -1);
_ObjectSetProperty( propertieslist , "ShowPropertyPages", 0);
_ObjectCallMethod( propertieslist , "Select", propertieslist);

38
How do I show or hide the categories

OBJECT propertieslist;

propertieslist =  ObjectByName("AN1") ;
_ObjectSetProperty( propertieslist , "MarkCategories", 0);
_ObjectSetProperty( propertieslist , "ShowCategories", -1);
_ObjectSetProperty( propertieslist , "ShowPropertyPages", 0);
_ObjectCallMethod( propertieslist , "Select", propertieslist);

37
How do I get a property based on its name

OBJECT propertieslist;

propertieslist =  ObjectByName("AN1") ;
_ObjectSetProperty( _ObjectCallMethod( propertieslist , "Add", "First Name","Mihai",1) , "ID", 100);
_ObjectCallMethod( propertieslist , "Add", "Last Name","Filimon",1);
_ObjectSetProperty( propertieslist , "SelectedProperty", _ObjectCallMethod(propertieslist, "ExecuteTemplate", "Property(100)"));
_ObjectCallMethod( propertieslist , "Refresh");

36
How do I get a property based on its name

OBJECT propertieslist;

propertieslist =  ObjectByName("AN1") ;
_ObjectCallMethod( propertieslist , "Add", "First Name","Mihai",1);
_ObjectCallMethod( propertieslist , "Add", "Last Name","Filimon",1);
_ObjectSetProperty( propertieslist , "SelectedProperty", _ObjectCallMethod(propertieslist, "ExecuteTemplate", "Property(`Last Name`)"));
_ObjectCallMethod( propertieslist , "Refresh");

35
How do I maintain performance while making several changes
OBJECT propertieslist;

propertieslist =  ObjectByName("AN1") ;
_ObjectCallMethod( propertieslist , "BeginUpdate");
_ObjectCallMethod( propertieslist , "Add", "First",1,1);
_ObjectCallMethod( propertieslist , "Add", "Second",1,1);
_ObjectCallMethod( propertieslist , "EndUpdate");

34
How can I get a list of interfaces that an object implements

OBJECT propertieslist;

propertieslist =  ObjectByName("AN1") ;
Message( _ObjectCallMethod(propertieslist, "ExecuteTemplate", "Interfaces(Me)") );

33
How can I display something else when including the elements of a collection
OBJECT propertieslist;

propertieslist =  ObjectByName("AN1") ;
_ObjectSetProperty( propertieslist , "ShowObjects", -1);
_ObjectSetProperty( propertieslist , "ShowItemsCollection", -1);
_ObjectSetProperty( propertieslist , "NameItemsCollection", "Name;Caption;Item;Index");
_ObjectCallMethod( propertieslist , "Select", propertieslist);

32
How can I include the elements of a collection
OBJECT propertieslist;

propertieslist =  ObjectByName("AN1") ;
_ObjectSetProperty( propertieslist , "ShowObjects", -1);
_ObjectSetProperty( propertieslist , "ShowItemsCollection", -1);
_ObjectCallMethod( propertieslist , "Select", propertieslist);

31
How can I use a spin control to edit numeric values

OBJECT propertieslist;

propertieslist =  ObjectByName("AN1") ;
_ObjectSetProperty( propertieslist , "AllowSpin", -1);
_ObjectCallMethod( propertieslist , "Select", propertieslist);

30
How can I change the control's font

OBJECT propertieslist;

propertieslist =  ObjectByName("AN1") ;
_ObjectSetProperty( _ObjectGetProperty( propertieslist , "Font") , "Name", "Tahoma");
_ObjectCallMethod( propertieslist , "Select", propertieslist);

29
How do I show or hide the variables of an object like Font

OBJECT propertieslist;

propertieslist =  ObjectByName("AN1") ;
_ObjectSetProperty( propertieslist , "ShowVariables", -1);
_ObjectCallMethod( propertieslist , "Select", _ObjectGetProperty( propertieslist , "Font"));

28
How do I show or hide the categories

OBJECT propertieslist;

propertieslist =  ObjectByName("AN1") ;
_ObjectSetProperty( propertieslist , "ShowCategories", -1);
_ObjectSetProperty( propertieslist , "ShowPropertyPages", 0);
_ObjectCallMethod( propertieslist , "Select", propertieslist);

27
How do I refresh the control
OBJECT propertieslist;

propertieslist =  ObjectByName("AN1") ;
_ObjectCallMethod( propertieslist , "Add", "Last Name","Filimon",1);
_ObjectCallMethod( propertieslist , "Refresh");

26
How can still display the selected items when the control loses the focus
OBJECT propertieslist;

propertieslist =  ObjectByName("AN1") ;
_ObjectSetProperty( propertieslist , "HideSelection", 0);
_ObjectCallMethod( propertieslist , "Add", "First Name","Mihai",1);
_ObjectCallMethod( propertieslist , "Add", "Last Name","Filimon",1);
_ObjectSetProperty( propertieslist , "SelectedProperty", _ObjectCallMethod(propertieslist, "ExecuteTemplate", "Property(`Last Name`)"));
_ObjectCallMethod( propertieslist , "Refresh");

25
How do I change the visual appearance effect for the selected item, using EBN

OBJECT propertieslist;

propertieslist =  ObjectByName("AN1") ;
_ObjectCallMethod( _ObjectGetProperty( propertieslist , "VisualAppearance") , "Add", 1,"c:\exontrol\images\normal.ebn");
_ObjectSetProperty( propertieslist , "SelBackColor", 16777216);
_ObjectSetProperty( propertieslist , "SelForeColor", 0);
_ObjectCallMethod( propertieslist , "Add", "First Name","Mihai",1);
_ObjectCallMethod( propertieslist , "Add", "Last Name","Filimon",1);
_ObjectSetProperty( propertieslist , "SelectedProperty", _ObjectCallMethod(propertieslist, "ExecuteTemplate", "Property(`Last Name`)"));
_ObjectCallMethod( propertieslist , "Refresh");

24
How do I change the colors for the selected item

OBJECT propertieslist;

propertieslist =  ObjectByName("AN1") ;
_ObjectSetProperty( propertieslist , "SelBackColor", 0);
_ObjectCallMethod( propertieslist , "Add", "First Name","Mihai",1);
_ObjectCallMethod( propertieslist , "Add", "Last Name","Filimon",1);
_ObjectSetProperty( propertieslist , "SelectedProperty", _ObjectCallMethod(propertieslist, "ExecuteTemplate", "Property(`Last Name`)"));
_ObjectCallMethod( propertieslist , "Refresh");

23
How do I show or hide the non browseable members
OBJECT propertieslist;

propertieslist =  ObjectByName("AN1") ;
_ObjectSetProperty( propertieslist , "ShowNonBrowsable", -1);
_ObjectCallMethod( propertieslist , "Select", propertieslist);

22
How can I hide or show the object's property pages

OBJECT propertieslist;

propertieslist =  ObjectByName("AN1") ;
_ObjectSetProperty( propertieslist , "ShowPropertyPages", 0);
_ObjectCallMethod( propertieslist , "Select", propertieslist);

21
How do I filter properties when loading
OBJECT propertieslist;

propertieslist =  ObjectByName("AN1") ;
_ObjectSetProperty( propertieslist , "FireIncludeProperty", -1);

20
How do I get or set the selected property

OBJECT propertieslist;

propertieslist =  ObjectByName("AN1") ;
_ObjectCallMethod( propertieslist , "Add", "First Name","Mihai",1);
_ObjectCallMethod( propertieslist , "Add", "Last Name","Filimon",1);
_ObjectSetProperty( propertieslist , "SelectedProperty", _ObjectCallMethod(propertieslist, "ExecuteTemplate", "Property(`Last Name`)"));
_ObjectCallMethod( propertieslist , "Refresh");

19
How do I remove "Invalid property value." message
OBJECT propertieslist;

propertieslist =  ObjectByName("AN1") ;
_ObjectSetProperty( propertieslist , "InvalidValueMessage", "");
_ObjectCallMethod( propertieslist , "Select", propertieslist);

18
How do I change the "Invalid property value." message
OBJECT propertieslist;

propertieslist =  ObjectByName("AN1") ;
_ObjectSetProperty( propertieslist , "InvalidValueMessage", "new message");
_ObjectCallMethod( propertieslist , "Select", propertieslist);

17
How do I edit a property as soon as the user selects it
OBJECT propertieslist;

propertieslist =  ObjectByName("AN1") ;
_ObjectSetProperty( propertieslist , "EditOnSelect", -1);
_ObjectCallMethod( propertieslist , "Select", propertieslist);

16
How do I make the control read only

OBJECT propertieslist;

propertieslist =  ObjectByName("AN1") ;
_ObjectSetProperty( propertieslist , "ReadOnly", -1);
_ObjectCallMethod( propertieslist , "Select", propertieslist);

15
How do I show or hide the read only members
OBJECT propertieslist;

propertieslist =  ObjectByName("AN1") ;
_ObjectSetProperty( propertieslist , "ShowReadOnly", 0);
_ObjectCallMethod( propertieslist , "Select", propertieslist);

14
How do I show or hide the grid lines

OBJECT propertieslist;

propertieslist =  ObjectByName("AN1") ;
_ObjectSetProperty( propertieslist , "HasGridLines", 0);
_ObjectCallMethod( propertieslist , "Select", propertieslist);

13
How do I hide the hierarchy lines

OBJECT propertieslist;

propertieslist =  ObjectByName("AN1") ;
_ObjectSetProperty( propertieslist , "HasLines", 0);
_ObjectCallMethod( propertieslist , "Select", propertieslist);

12
How can I add the horizontal scroll bar

OBJECT propertieslist;

propertieslist =  ObjectByName("AN1") ;
_ObjectSetProperty( propertieslist , "ColumnAutoResize", 0);
_ObjectSetProperty( propertieslist , "HeaderVisible", -1);
_ObjectCallMethod( propertieslist , "Select", propertieslist);

11
How do I show or hide the control's header bar

OBJECT propertieslist;

propertieslist =  ObjectByName("AN1") ;
_ObjectSetProperty( propertieslist , "HeaderVisible", -1);
_ObjectCallMethod( propertieslist , "Select", propertieslist);

10
How do I show or hide the objects members
OBJECT propertieslist;

propertieslist =  ObjectByName("AN1") ;
_ObjectSetProperty( propertieslist , "ShowObjects", 0);
_ObjectCallMethod( propertieslist , "Select", propertieslist);

9
How do I show or hide the restricted members
OBJECT propertieslist;

propertieslist =  ObjectByName("AN1") ;
_ObjectSetProperty( propertieslist , "ShowRestricted", 0);
_ObjectCallMethod( propertieslist , "Select", propertieslist);

8
How do I show or hide the hidden members
OBJECT propertieslist;

propertieslist =  ObjectByName("AN1") ;
_ObjectSetProperty( propertieslist , "ShowHidden", 0);
_ObjectCallMethod( propertieslist , "Select", propertieslist);

7
How do I browse or select an object
OBJECT propertieslist;

propertieslist =  ObjectByName("AN1") ;
_ObjectCallMethod( propertieslist , "Select", propertieslist);

6
How do I change the control's foreground color

OBJECT propertieslist;

propertieslist =  ObjectByName("AN1") ;
_ObjectSetProperty( propertieslist , "ForeColor", 7864440);
_ObjectCallMethod( propertieslist , "Select", propertieslist);

5
How do I change the control's background color

OBJECT propertieslist;

propertieslist =  ObjectByName("AN1") ;
_ObjectSetProperty( propertieslist , "BackColor", 13158600);

4
How do change the visual appearance for the control's border, using EBN

OBJECT propertieslist;

propertieslist =  ObjectByName("AN1") ;
_ObjectCallMethod( _ObjectGetProperty( propertieslist , "VisualAppearance") , "Add", 1,"c:\exontrol\images\normal.ebn");
_ObjectSetProperty( propertieslist , "BorderStyle", 16777216);
_ObjectSetProperty( propertieslist , "BackColor", 16777215);

3
How do I remove the control's border
OBJECT propertieslist;

propertieslist =  ObjectByName("AN1") ;
_ObjectSetProperty( propertieslist , "BorderStyle", 0);

2
How do I change the height of the description part in the bottom side of the control

OBJECT propertieslist;

propertieslist =  ObjectByName("AN1") ;
_ObjectSetProperty( propertieslist , "DescriptionHeight", 100);

1
How do I hide or show the description part in the bottom side of the control

OBJECT propertieslist;

propertieslist =  ObjectByName("AN1") ;
_ObjectSetProperty( propertieslist , "DescriptionVisible", 0);